iT邦幫忙

2022 iThome 鐵人賽

DAY 25
0
自我挑戰組

CSS 面試趣系列 第 25

Day 25 - [Part 3] 介紹 Grid 外容器屬性

  • 分享至 

  • xImage
  •  

[Part 3] 介紹 Grid 外容器屬性

本篇將介紹以下 3 個屬性:

  • justify-items
  • align-items
  • place-items

items 指所有內元素,而 justifyalign 分別指每一個 grid cell 的主軸和交錯軸的方向(水平和垂直)。

  • start:對齊區域的軸線起點
  • end:對齊區域的軸線終點
  • center:對齊區域的中央
  • stretch:伸展區域直到填滿整條軸線

justify-items 範例

CodePen 範例

  • jusfity-items:start
    Imgur

  • jusfity-items:end
    Imgur

  • jusfity-items:center
    Imgur

  • jusfity-items:stretch
    Imgur

align-items 範例

CodePen 範例

  • align-items:start
    Imgur

  • align-items:end
    Imgur

  • align-items:center
    Imgur

  • align-items:stretch
    Imgur

place-items

justify-itemsalign-items 的縮寫。

.container {
	place-items: <align-items> <justify-items>
}
.container {
	place-items: center end;
}

相等於

.container {
	align-items: center;
	justify-items: end;
}

參考資料:
CSS進階:Grid格線佈局


上一篇
Day 24 - [Part 2] 介紹 Grid 外容器屬性
下一篇
Day 26 - [Part 4] 介紹 Grid 外容器屬性
系列文
CSS 面試趣30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言